compress/flate.decompressor.b (field)
27 uses
compress/flate (current package)
inflate.go#L274: b uint32
inflate.go#L308: f.final = f.b&1 == 1
inflate.go#L309: f.b >>= 1
inflate.go#L310: typ := f.b & 3
inflate.go#L311: f.b >>= 2
inflate.go#L374: nlit := int(f.b&0x1F) + 257
inflate.go#L378: f.b >>= 5
inflate.go#L379: ndist := int(f.b&0x1F) + 1
inflate.go#L383: f.b >>= 5
inflate.go#L384: nclen := int(f.b&0xF) + 4
inflate.go#L386: f.b >>= 4
inflate.go#L396: f.codebits[codeOrder[i]] = int(f.b & 0x7)
inflate.go#L397: f.b >>= 3
inflate.go#L448: rep += int(f.b & uint32(1<<nb-1))
inflate.go#L449: f.b >>= nb
inflate.go#L548: length += int(f.b & uint32(1<<n-1))
inflate.go#L549: f.b >>= n
inflate.go#L561: dist = int(bits.Reverse8(uint8(f.b & 0x1F << 3)))
inflate.go#L562: f.b >>= 5
inflate.go#L584: extra |= int(f.b & uint32(1<<nb-1))
inflate.go#L585: f.b >>= nb
inflate.go#L627: f.b = 0
inflate.go#L702: f.b |= uint32(c) << f.nb
inflate.go#L717: nb, b := f.nb, f.b
inflate.go#L722: f.b = b
inflate.go#L738: f.b = b
inflate.go#L743: f.b = b >> (n & 31)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |